home *** CD-ROM | disk | FTP | other *** search
/ IBM InfoROM for OS/2 Beta 1995 January / IBM InfoROM for OS2 Beta 1-1995.ISO / testcert / storage / function / scsi / add / inquiry.scr < prev    next >
Encoding:
Text File  |  1994-08-13  |  631 b   |  32 lines

  1. * Returns information regarding parameters of
  2. * the target and its attached peripheral device(s).
  3.  
  4. @THREAD INQUIRY.LOG
  5. @NEWALIAS SADD SCSIADD.GRA
  6. @IMPORT SCSICOM.SCR
  7. SADD DD_OPEN
  8.  
  9. * 0=Async mode, 1=Sync mode
  10. SADD SET MODE=1
  11.  
  12. * Name for paramblock
  13. SADD SET LABEL = INQUIRY
  14.  
  15. * Command completion timeout (Secs)
  16. * 0=the assigned value is the default set by the driver,
  17. * -1=the assigned value is infinite.
  18. SADD SET TIMEOUT=0 
  19.  
  20. SADD SET ENABLE_VITAL_PRODUCT_DATA = 0
  21.  
  22. SADD SET CODE_PAGE = 0
  23.  
  24. * allocation length
  25. * this value should not exceed 255
  26. SADD SET NUM_BYTES = 255
  27.  
  28. SADD INQUIRY
  29.  
  30. SADD DD_CLOSE
  31.  
  32.